1'use client';23export function PrintButton() {4 return (5 <button type="button" onClick={() => window.print()} className="inline-flex h-9 items-center rounded-md bg-accent px-3 text-[13px] font-medium text-accent-fg hover:opacity-90">6 Print / Save as PDF7 </button>8 );9}10